home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Games / DrawSprocketTest / makefile < prev   
Encoding:
Makefile  |  2000-09-28  |  1.6 KB  |  71 lines  |  [TEXT/MPS ]

  1. #
  2. #    File:        makefile
  3. #
  4. #    Contains:    xxx put contents here xxx
  5. #
  6. #    Version:    xxx put version here xxx
  7. #
  8. #    Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  9. #
  10. #    File Ownership:
  11. #
  12. #        DRI:                xxx put dri here xxx
  13. #
  14. #        Other Contact:        xxx put other contact here xxx
  15. #
  16. #        Technology:            xxx put technology here xxx
  17. #
  18. #    Writers:
  19. #
  20. #        (cjd)    Chris De Salvo
  21. #
  22. #    Change History (most recent first):
  23. #
  24. #       <SP1>    10/19/98    cjd        first checked in
  25. #
  26.  
  27. #   File:       makefile
  28. #   Target:     DrawSprocketTest
  29. #   Sources:    DrawSprocketTest.c
  30. #   Created:    Wednesday, September 30, 1998 02:13:05 PM
  31.  
  32.  
  33. MAKEFILE     = makefile
  34. •MondoBuild• = {MAKEFILE}  # Make blank to avoid rebuilds when makefile is modified
  35. Includes     = -i "{RIncludes}"
  36. Sym•PPC      = 
  37. ObjDir•PPC   = :Objects:
  38.  
  39. PPCCOptions  = {Includes} {Sym•PPC} 
  40.  
  41. Objects•PPC  = ∂
  42.         "{ObjDir•PPC}DrawSprocketTest.c.x"
  43.  
  44. # default directory rule
  45. {ObjDir•PPC}    ƒ    :
  46.  
  47. DrawSprocketTest ƒƒ {•MondoBuild•} {Objects•PPC}
  48.     PPCLink ∂
  49.         -o {Targ} {Sym•PPC} ∂
  50.         {Objects•PPC} ∂
  51.         -t 'APPL' ∂
  52.         -c '????' ∂
  53.         "{PPCLibraries}PPCSIOW.o" ∂
  54.         "{SharedLibraries}InterfaceLib" ∂
  55.         "{SharedLibraries}StdCLib" ∂
  56.         "{SharedLibraries}MathLib" ∂
  57.         "{SharedLibraries}DrawSprocketLib" ∂
  58.         "{PPCLibraries}PPCCRuntime.o" ∂
  59.         "{PPCLibraries}PPCToolLibs.o" ∂
  60.         -weaklib "DrawSprocketLib"
  61.  
  62. DrawSprocketTest ƒƒ "{RIncludes}"SIOW.r
  63.     Rez -a "{RIncludes}"SIOW.r -o {Targ}
  64.  
  65. DrawSprocketTest ƒƒ DrawSprocketTest.rsrc
  66.     echo "INCLUDE ∂"DrawSprocketTest.rsrc∂" NOT 'ckid';∂n" | rez -a  -o {Targ}
  67.  
  68. "{ObjDir•PPC}DrawSprocketTest.c.x" ƒ {•MondoBuild•} DrawSprocketTest.c
  69.     {PPCC} DrawSprocketTest.c -o {Targ} {PPCCOptions}
  70.  
  71.